a98f69ab3ac68bb6b32cb7085c161f87ad532fd5,lib/QMBForm/src/main/java/com/quemb/qmbform/annotation/FormDescriptorAnnotationFactory.java,FormDescriptorAnnotationFactory,createFormDescriptorFromAnnotatedClass,#Object#,63

Before Change


                        e.printStackTrace();
                    }

                    RowDescriptor rowDescriptor = RowDescriptor.newInstance(annotation.tag(),
                            annotation.rowDescriptorType(),
                            getContext().getString(annotation.label()),
                            value);

After Change


                        e.printStackTrace();
                    }

                    RowDescriptor rowDescriptor = RowDescriptor.newInstance(annotation.tag().length() > 0 ? annotation.tag() : field.getName(),
                            annotation.rowDescriptorType(),
                            getContext().getString(annotation.label()),
                            value);